home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20021006-20030409 / 000221_dba_222@yahoo.com_Fri Jan 17 16:19:10 EST 2003.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  87 lines

  1. Article: 14012 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!newsfeed.mathworks.com!arclight.uoregon.edu!logbridge.uoregon.edu!newsfeed.stanford.edu!postnews1.google.com!not-for-mail
  3. From: dba_222@yahoo.com (Roger Redford)
  4. Newsgroups: comp.databases.oracle.server,comp.security.ssh,comp.terminals,comp.protocols.kermit.misc
  5. Subject: Re: Strange behavior with SQLPLUS (Oracle)
  6. Date: 17 Jan 2003 13:17:46 -0800
  7. Organization: http://groups.google.com/
  8. Lines: 68
  9. Message-ID: <a8c29269.0301171317.2c874c13@posting.google.com>
  10. References: <a8c29269.0301140753.7ee5175c@posting.google.com>
  11. NNTP-Posting-Host: 205.181.14.12
  12. Content-Type: text/plain; charset=ISO-8859-1
  13. Content-Transfer-Encoding: 8bit
  14. X-Trace: posting.google.com 1042838267 21689 127.0.0.1 (17 Jan 2003 21:17:47 GMT)
  15. X-Complaints-To: groups-abuse@google.com
  16. NNTP-Posting-Date: 17 Jan 2003 21:17:47 GMT
  17. Xref: newsmaster.cc.columbia.edu comp.databases.oracle.server:215244 comp.security.ssh:30831 comp.terminals:17744 comp.protocols.kermit.misc:14012
  18.  
  19. Hi guys,
  20.  
  21. Thanks for all your responses.  With sqlplus I tried all these things:
  22. set trimspool on/off
  23. set linesize
  24. copying environments
  25.  
  26. and it made no difference.  I still had the same symptom.  
  27.  
  28. Only formatting the column works.  Which, as I mentioned, is a lot 
  29. more work for every ad hoc query. 
  30.  
  31. I'm thinking that this is really not a sqlplus issue, but a
  32. terminal issue.  Any ideas?
  33.  
  34. Thanks
  35.  
  36.  
  37.  
  38. dba_222@yahoo.com (Roger Redford) wrote in message news:<a8c29269.0301140753.7ee5175c@posting.google.com>...
  39. > I've recently moved to a new environment, and I'm getting some strange
  40. > symptoms with sqlplus.  The environment is:
  41. > Oracle 9.2, on solaris
  42. > Ibm thinkpad laptop
  43. > Smarterm and Putty
  44. > I've used both Smarterm and Putty to connect to unix and use sqlplus.  It is 
  45. > using SSH, but the symptoms occur whether I am just using telnet, or ssh. 
  46. > The symptom is:
  47. > When do I select some long columns, such as TABLE_OWNER, 
  48. > OR table_name, the field takes up a whole line.
  49. > IE. 
  50. > Select     table_owner ,
  51. >         table_name  , 
  52. >         partition_name,
  53. >         NUM_ROWS,
  54. >         LAST_ANALYZED
  55. > from        all_tab_partitions
  56. > where        NUM_ROWS = 0
  57. > ORDER BY     TABLE_OWNER,
  58. >         TABLE_NAME,
  59. >         PARTITION_NAME
  60. > I have tried: 
  61. > set linesize 30000
  62. > substr(table_owner, 1, 20) as table_owner 
  63. > Yet, no matter what I do, the symptoms persist.  
  64. > Set wrap is on.  If I set it off, I will only see the first field.
  65. > The crazy thing is, that my neighbors' sqlplus works normally,
  66. > and only returns 30 or less columns.  
  67. > Is there a setting that I should be concerned about?  Is it in 
  68. > sqlplus, or in the client software (Putty, or Smarterm)?
  69. > Thanks
  70.